Skip to main content
Version: 6.3.0

getDelegatedResourceV2 <src>

Query the resources that an account delegates to another account under the V2 interface. (v5.1.0 new interface)

Usage

tronWeb.trx.getDelegatedResourceV2(fromAddress, toAddress, options)

Parameters

ParametersParameter DescriptionData Type
fromAddressresource from account address (base58 or hex)String
toAddressresource to account address (base58 or hex)String
optionsOptional. Default is { confirmed: true }. If options.confirmed is true, the result is queried from solidity node.{ confirmed: boolean }

Return

Object - Delegated resource information, see the example below.

Example

await tronWeb.trx.getDelegatedResourceV2('TMVQGm1qAQYVdetCeGRRkTWYYrLXuHK2HC', 'TDvSsdrNM5eeXNL3czpa6AxLDHZA9nwe9K');
{
"delegatedResource": [
{
"from": "TMVQGm1qAQYVdetCeGRRkTWYYrLXuHK2HC",
"to": "TDvSsdrNM5eeXNL3czpa6AxLDHZA9nwe9K",
"frozen_balance_for_bandwidth": 10000000
}
]
}